home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / ibus / application.py < prev    next >
Text File  |  2009-11-05  |  1KB  |  41 lines

  1. # vim:set et sts=4 sw=4:
  2. #
  3. # ibus - The Input Bus
  4. #
  5. # Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Lesser General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU Lesser General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Lesser General Public
  18. # License along with this program; if not, write to the
  19. # Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  20. # Boston, MA  02111-1307  USA
  21.  
  22. import ibus
  23. import dbus
  24.  
  25. class Application:
  26.     def __init__ (self):
  27.         self._dbusconn = dbus.connection.Connection (ibus.get_address())
  28.         self._dbusconn.add_signal_receiver (self._disconnected_cb,
  29.                             "Disconnected",
  30.                             dbus_interface = dbus.LOCAL_IFACE)
  31.  
  32.     def _disconnected_cb (self):
  33.         self.on_disconnected ()
  34.  
  35.     def on_disconnected (self):
  36.         pass
  37.  
  38.     def run (self):
  39.         pass
  40.  
  41.